home *** CD-ROM | disk | FTP | other *** search
/ CD ROM Paradise Collection 4 / CD ROM Paradise Collection 4 1995 Nov.iso / hobby / ast44src.zip / MAKEFILE.UNX < prev    next >
Text File  |  1995-02-11  |  1KB  |  32 lines

  1. # Astrolog (Version 4.40) File: Makefile (Unix version)
  2. #
  3. # IMPORTANT NOTICE: The graphics database and chart display routines
  4. # used in this program are Copyright (C) 1991-1995 by Walter D. Pullen
  5. # (astara@u.washington.edu). Permission is granted to freely use and
  6. # distribute these routines provided one doesn't sell, restrict, or
  7. # profit from them in any way. Modification is allowed provided these
  8. # notices remain with any altered or edited versions of the program.
  9. #
  10. # First created 11/21/1991.
  11. #
  12. # This Makefile is included only for convenience. One could easily compile
  13. # Astrolog on a Unix system by hand with the command:
  14. # % cc -c -O *.c; cc -o astrolog *.o -lm -lX11
  15. # Generally, all that needs to be done to compile once astrolog.h has been
  16. # edited, is compile each source file, and link them together with the math
  17. # library, and if applicable, the main X library.
  18. #
  19. NAME = astrolog
  20. OBJ = astrolog.o data.o data2.o general.o io.o\
  21.  calc.o matrix.o placalc.o placalc2.o\
  22.  charts0.o charts1.o charts2.o charts3.o intrpret.o\
  23.  xdata.o xgeneral.o xdevice.o xcharts0.o xcharts1.o xcharts2.o xscreen.o
  24. # If you don't have X windows, delete the "-lX11" part from the line below:
  25. LIBS = -lm -lX11
  26. CFLAGS = -O
  27.  
  28. astrolog:: $(OBJ)
  29.     cc -o $(NAME) $(OBJ) $(LIBS)
  30.     strip $(NAME)
  31. #
  32.